home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.4 KB | 62 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _NMSPCITR_
- #define _NMSPCITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODValueIterator;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
-
- interface ODNameSpace;
-
-
- //==============================================================================
- // ODValueIterator
- //==============================================================================
-
- interface ODValueIterator : ODObject
- {
- void InitValueIterator(in ODNameSpace nameSpace);
-
- void First(inout ODISOStr key,
- inout ODPtr value,
- inout ODULong valueLength);
- void Next(inout ODISOStr key,
- inout ODPtr value,
- inout ODULong valueLength);
- ODBoolean IsNotComplete();
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit;
-
- releaseorder:
- InitValueIterator,
- First,
- Next,
- IsNotComplete,
- reserved1,
- reserved2,
- reserved3;
-
- majorversion = 1; minorversion = 0;
-
-
- };
- #endif
- };
-
- #endif // _NMSPCITR_
-